for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/* global API */
API.cookies = {
get: function (details) {
if (API.promise) {
return API.api.cookies.get(details);
}
else {
return new C_Promise(function () {
API.api.cookies.get(details, (function (cookie) {
this.call_then(cookie);
}).bind(this));
});
},
getAll: function (details) {
return API.api.cookies.getAll(details);
API.api.cookies.getAll(details, (function (cookie) {
set: function (details) {
return API.api.cookies.set(details);
API.api.cookies.set(details, (function (cookie) {
remove: function (details) {
return API.api.cookies.remove(details);
API.api.cookies.remove(details, (function (cookie) {
getAllCookieStores: function (details) {
return API.api.cookies.getAllCookieStores(details);
API.api.cookies.getAllCookieStores(details, (function (cookie) {
};